home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / mac / MACF / MGER.DIR / 00032_Script_32 < prev    next >
Text File  |  1995-10-10  |  514b  |  27 lines

  1. on mousedown
  2.   global letgo,movielist
  3.   
  4.   if the doubleclick then
  5.     --playmovn
  6.     if count(movielist)>=24 then exit
  7.     set the ink of sprite 17 to 4
  8.     updateStage
  9.     put the clickon into yu
  10.     --set the castnum of sprite yu=the number of cast string(chars(the name of cast (the castnum of sprite yu),1,2)&"s")
  11.     addbar yu
  12.     updateStage
  13.     exit
  14.   end if
  15.   
  16.   set letgo=2
  17.   
  18. end
  19.  
  20. on mouseup
  21.   global reset,letgo
  22.   if the doubleclick then exit
  23.   set letgo=0
  24.   set reset=1
  25. end
  26.  
  27.